fix(motion_velocity_planner_common): suppress maybe-uninitialized warning on NVIDIA DRIVE AGX Thor#877
Conversation
…ning on NVIDIA DRIVE AGX Thor Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
|
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #877 +/- ##
==========================================
- Coverage 50.43% 50.13% -0.30%
==========================================
Files 372 354 -18
Lines 23141 22481 -660
Branches 10264 9926 -338
==========================================
- Hits 11671 11271 -400
+ Misses 10349 10143 -206
+ Partials 1121 1067 -54
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
@veqcc BTW, what's the compiler version ? |
It's 13.3, which I think is the default version on Ubuntu 24.04. |
|
I am sorry that we have to wait the following two PRs to be merged in order to pass GitHub CIs. |
|
Although the clang-tidy CI raises errors here, this is not related to the current changes and I will merge it. |
Description
Suppressed
maybe-uninitializedwarnings.This error is happening inside boost libraries, which means we cannot avoid the error by explicitly initializing variables.
The whole error message on NVIDIA DRIVE AGX Thor devkit looks as follows:
Related links
Parent Issue:
How was this PR tested?
I have confirmed that the build success on Thor.
Notes for reviewers
The compiler version is
Interface changes
None.
Effects on system behavior
None.